"TEXT 1"="Enable Showing Windows Build/Version on Desktop"
"DESCRIPTION 1"="This plug-in allows you to display the build of Windows that you are using in the lower right-hand corner of your desktop screen above the taskbar tray area."
"DESCRIPTION 2"="This works on Windows 98 and Windows 95. Has not been tested with Windows NT 4.0 nor Windows 2000. If you have successfully used it on them, please send details to CptSiskoX@flashmail.com about it. Thank you."
"DESCRIPTION 3"="To enable this plug-in, check the box above. To disable it, uncheck the box."
"AUTHOR"="CptSiskoX"
"COPYRIGHT"="Copyright ⌐ CptSiskoX of Xteq Systems - All rights reserved."
"COMMENT 1"="For questions, comments, or suggestions contact info@xteq.com or visit http://www.xteq.com/"
"COMMENT 2"="Version 1.0"
"COMMENT 3"="Thanks to Maxwell <maxwello@hotpop.com> for this setting."
'Declaration of some constants
sP="HKEY_CURRENT_USER\Control Panel\Desktop\"
sV1="PaintDesktopVersion"
'Called when the Plugin is started
SUB Plugin_Initialize
If GetWinVer=3 then
i=RegReadValue(sp & sv1)
if i=1 then SetUIElement 1,true
else
Disable
end if
END SUB
'Called when the Plugin should validate the Data the user has entered
SUB Plugin_CheckData(ElementIndex)
END SUB
'Called when the Plugin should apply the changes
SUB Plugin_Apply(ElementIndex,ElementSubIndex)
b=GetUIElement(1)
if b=true then
Call RegWriteValue(sp & sv1,"1",1)
else
Call RegWriteValue(sp & sv1,"0",1)
end if
Restart
END SUB
'Called when the Plugin is about to be removed from memory